home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hart's War Press Kit
/
Hart's War Press Kit.iso
/
pc
/
pcstubwqt.dir
/
00002_Script_first frame script
< prev
next >
Wrap
Text File
|
2002-01-14
|
593b
|
26 lines
on exitFrame
if tryToSetColorDepth (16) = FALSE then -- Check color depth
go "changeColorDepth"
else
if quickTimeVersion() < 4.0 then -- check QT
--tell them to install QT
go "QTInstall"
else
go movie "Hart's_War"
end if
end if
end
on TryToSetColorDepth desiredDepth
if the colordepth >= desiredDepth then return TRUE
if the environment.platform contains "Windows,32" then RETURN FALSE
set the colordepth to desiredDepth
if the colorDepth = desiredDepth then
return true
else
return false
end if
end